home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.1 KB | 60 lines | [TEXT/MPS ] |
- {
- File: Strings.p
-
- Copyright: © 1984-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
-
- Bugs?: If you find a problem with this file, send the file and version
- information (from above) and the problem description to:
-
- Internet: apple.bugs@applelink.apple.com
- AppleLink: APPLE.BUGS
-
- }
-
- {$IFC UNDEFINED UsingIncludes}
- {$SETC UsingIncludes := 0}
- {$ENDC}
-
- {$IFC NOT UsingIncludes}
- UNIT Strings;
- INTERFACE
- {$ENDC}
-
- {$IFC UNDEFINED __STRINGS__}
- {$SETC __STRINGS__ := 1}
-
- {$I+}
- {$SETC StringsIncludes := UsingIncludes}
- {$SETC UsingIncludes := 1}
-
-
- {$IFC UNDEFINED __TYPES__}
- {$I Types.p}
- {$ENDC}
- { ConditionalMacros.p }
-
- {$PUSH}
- {$ALIGN MAC68K}
- {$LibExport+}
- {$IFC OLDROUTINELOCATIONS }
-
- PROCEDURE C2PStrProc(aStr: UNIV Ptr);
- FUNCTION C2PStr(cString: UNIV Ptr): StringPtr;
- PROCEDURE P2CStrProc(aStr: StringPtr);
- FUNCTION P2CStr(pString: StringPtr): Ptr;
- {$ENDC}
-
- {$ALIGN RESET}
- {$POP}
-
- {$SETC UsingIncludes := StringsIncludes}
-
- {$ENDC} {__STRINGS__}
-
- {$IFC NOT UsingIncludes}
- END.
- {$ENDC}
-